﻿.team-section {
    position: relative;
    padding: 40px;
    padding-left: 85px;
    padding-right: 85px;
    background: #000;
    color: #fff;
}
    .team-section::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 100px;
        width: 100%;
        background: linear-gradient( to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 1) 100% );
        z-index: 1;
    }


    .team-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 100px;
        width: 100%;
        background: linear-gradient( to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 1) 100% );
        z-index: 2;
    }




.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: contain;
    width: 48px;
    height: 55px;
}

.carousel-control-prev-icon {
    background-image: url('/img/arrowLeft.png');
}

.carousel-control-next-icon {
    background-image: url('/img/arrowRight.png');
}

.team-carousel .carousel-control-prev,
.team-carousel .carousel-control-next {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.team-carousel .carousel-control-prev {
    left: -65px;
}

.team-carousel .carousel-control-next {
    right: -65px;
}

.custom-arrow:hover {
    opacity: 0.7;
}
.team-carousel .carousel-item {
    transition: transform 1s ease-in-out;
}